home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 June / ccd0605.iso / Software / Freeware / Programare / highlight / highlight-W32GUI-2.2-10b-Setup.exe / {app} / src / directoryreader.h < prev    next >
C/C++ Source or Header  |  2003-07-17  |  1KB  |  43 lines

  1. /***************************************************************************
  2.                           directoryreader.h  -  description
  3.                              -------------------
  4.     begin                : Son Nov 10 2002
  5.     copyright            : (C) 2002 by AndrΘ Simon
  6.     email                : andre.simon1@gmx.de
  7.  ***************************************************************************/
  8.  
  9. /***************************************************************************
  10.  *                                                                         *
  11.  *   This program is free software; you can redistribute it and/or modify  *
  12.  *   it under the terms of the GNU General Public License as published by  *
  13.  *   the Free Software Foundation; either version 2 of the License, or     *
  14.  *   (at your option) any later version.                                   *
  15.  *                                                                         *
  16.  ***************************************************************************/
  17.  
  18. #ifndef DIRECTORYREADER_H
  19. #define DIRECTORYREADER_H
  20.  
  21. #include <string>
  22. #include <vector>
  23.  
  24.  
  25. /**enthΣlt Methoden zum Auslesen von Verzeichnisinhalten
  26.   *@author AndrΘ Simon
  27.   */
  28.  
  29. using namespace std;
  30.  
  31. //typedef std::set
  32.   //<string>::iterator FileNameIterator;
  33.  
  34. class DirectoryReader
  35.   {
  36.   public:
  37.     DirectoryReader();
  38.     ~DirectoryReader();
  39.     static bool getEntries(vector<string> &fileList, string wildcard,bool recursiveSearch=false) ;
  40.   };
  41.  
  42. #endif
  43.